home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 3.2 / Ham Radio Version 3.2 (Chestnut CD-ROMs)(1993).ISO / packet / n17jsrc / nrs.c < prev    next >
C/C++ Source or Header  |  1991-03-27  |  5KB  |  223 lines

  1. /* This module implements the serial line framing method used by
  2.  * net/rom nodes.  This allows the net/rom software to talk to
  3.  * an actual net/rom over its serial interface, which is useful
  4.  * if we want to do packet switching for multi-line wormholes.
  5.  * Copyright 1989 Dan Frank, W9NK
  6.  */
  7. #include <stdio.h>
  8. #include "global.h"
  9. #include "mbuf.h"
  10. #include "iface.h"
  11. #include "pktdrvr.h"
  12. #include "ax25.h"
  13. #include "nrs.h"
  14. #include "asy.h"
  15. #include "trace.h"
  16. #include "commands.h"
  17.  
  18. static struct mbuf *nrs_encode __ARGS((struct mbuf *bp));
  19. static struct mbuf *nrs_decode __ARGS((int dev,char c));
  20.  
  21. /* control structures, sort of overlayed on async control blocks */
  22. struct nrs Nrs[ASY_MAX];
  23.  
  24. /* Send a raw net/rom serial frame */
  25. int
  26. nrs_raw(iface,bp)
  27. struct iface *iface;
  28. struct mbuf *bp;
  29. {
  30.     struct mbuf *bp1;
  31.  
  32.     dump(iface,IF_TRACE_OUT,CL_AX25,bp);
  33.     iface->rawsndcnt++;
  34.     iface->lastsent = secclock();
  35.  
  36.     if((bp1 = nrs_encode(bp)) == NULLBUF){
  37.         free_p(bp);
  38.         return -1;
  39.     }
  40.     return Nrs[iface->xdev].send(iface->dev,bp1);
  41. }
  42.  
  43. /* Encode a packet in net/rom serial format */
  44. static struct mbuf *
  45. nrs_encode(bp)
  46. struct mbuf *bp;
  47. {
  48.     struct mbuf *lbp;    /* Mbuf containing line-ready packet */
  49.     register char *cp;
  50.     int c;
  51.     unsigned char csum = 0;
  52.  
  53.     /* Allocate output mbuf that's twice as long as the packet.
  54.      * This is a worst-case guess (consider a packet full of STX's!)
  55.      * Add five bytes for STX, ETX, checksum, and two nulls.
  56.      */
  57.     lbp = alloc_mbuf((int16)(2*len_p(bp) + 5));
  58.     if(lbp == NULLBUF){
  59.         /* No space; drop */
  60.         free_p(bp);
  61.         return NULLBUF;
  62.     }
  63.     cp = lbp->data;
  64.  
  65.     *cp++ = STX;
  66.  
  67.     /* Copy input to output, escaping special characters */
  68.     while((c = PULLCHAR(&bp)) != -1){
  69.         switch(c){
  70.         case STX:
  71.         case ETX:
  72.         case DLE:
  73.             *cp++ = DLE;
  74.             /* notice drop through to default */
  75.         default:
  76.             *cp++ = c;
  77.         }
  78.         csum += c;
  79.     }
  80.     *cp++ = ETX;
  81.     *cp++ = csum;
  82.     *cp++ = NUL;
  83.     *cp++ = NUL;
  84.     
  85.     lbp->cnt = cp - lbp->data;
  86.     return lbp;
  87. }
  88. /* Process incoming bytes in net/rom serial format
  89.  * When a buffer is complete, return it; otherwise NULLBUF
  90.  */
  91. static struct mbuf *
  92. nrs_decode(dev,c)
  93. int dev;    /* net/rom unit number */
  94. char c;        /* Incoming character */
  95. {
  96.     struct mbuf *bp;
  97.     register struct nrs *sp;
  98.  
  99.     sp = &Nrs[dev];
  100.     switch(sp->state) {
  101.         case NRS_INTER:
  102.             if(uchar(c) == STX) {    /* look for start of frame */
  103.                 sp->state = NRS_INPACK;    /* we're in a packet */
  104.                 sp->csum = 0;                /* reset checksum */
  105.             }
  106.             return NULLBUF;
  107.         case NRS_CSUM:
  108.             bp = sp->rbp;
  109.             sp->rbp = NULLBUF;
  110.             sp->rcnt = 0;
  111.             sp->state = NRS_INTER;    /* go back to inter-packet state */
  112.             if(sp->csum == uchar(c)) {
  113.                 sp->packets++;
  114.             } else {
  115.                 free_p(bp);    /* drop packet with bad checksum */
  116.                 bp = NULLBUF;
  117.                 sp->errors++;    /* increment error count */
  118.             }
  119.             return bp;
  120.         case NRS_ESCAPE:
  121.             sp->state = NRS_INPACK;    /* end of escape */
  122.             break;            /* this will drop through to char processing */
  123.         case NRS_INPACK:
  124.             switch(uchar(c)) {
  125.             /* If we see an STX in a packet, assume that previous */
  126.             /* packet was trashed, and start a new packet */
  127.             case STX:
  128.                 free_p(sp->rbp);
  129.                 sp->rbp = NULLBUF;
  130.                 sp->rcnt = 0;
  131.                 sp->csum = 0;
  132.                 sp->errors++;
  133.                 return NULLBUF;
  134.             case ETX:
  135.                 sp->state = NRS_CSUM;    /* look for checksum */
  136.                 return NULLBUF;
  137.             case DLE:
  138.                 sp->state = NRS_ESCAPE;
  139.                 return NULLBUF;
  140.             }
  141.     }
  142.     /* If we get to here, it's with a character that's part of the packet.
  143.      * Make sure there's space for it.
  144.      */
  145.     if(sp->rbp == NULLBUF){
  146.         /* Allocate first mbuf for new packet */
  147.         if((sp->rbp1 = sp->rbp = alloc_mbuf(NRS_ALLOC)) == NULLBUF) {
  148.             sp->state = NRS_INTER;
  149.             return NULLBUF; /* No memory, drop */
  150.         }
  151.         sp->rcp = sp->rbp->data;
  152.     } else if(sp->rbp1->cnt == NRS_ALLOC){
  153.         /* Current mbuf is full; link in another */
  154.         if((sp->rbp1->next = alloc_mbuf(NRS_ALLOC)) == NULLBUF){
  155.             /* No memory, drop whole thing */
  156.             free_p(sp->rbp);
  157.             sp->rbp = NULLBUF;
  158.             sp->rcnt = 0;
  159.             sp->state = NRS_INTER;
  160.             return NULLBUF;
  161.         }
  162.         sp->rbp1 = sp->rbp1->next;
  163.         sp->rcp = sp->rbp1->data;
  164.     }
  165.     /* Store the character, increment fragment and total
  166.      * byte counts
  167.      */
  168.     *sp->rcp++ = c;
  169.     sp->rbp1->cnt++;
  170.     sp->rcnt++;
  171.     sp->csum += uchar(c);    /* add to checksum */
  172.     return NULLBUF;
  173. }
  174.  
  175. /* Process net/rom serial line I/O */
  176. void
  177. nrs_recv(dev,v1,v2)
  178. int dev;
  179. void *v1;
  180. void *v2;
  181. {
  182.     char c;
  183.     struct mbuf *bp,*nbp;
  184.     struct phdr phdr;
  185.  
  186.     /* Process any pending input */
  187.     for(;;){
  188.         c = Nrs[dev].get(Nrs[dev].iface->dev);
  189.         if((bp = nrs_decode(dev,c)) == NULLBUF)
  190.             continue;
  191.         if((nbp = pushdown(bp,sizeof(phdr))) == NULLBUF){
  192.             free_p(bp);
  193.             continue;
  194.         }
  195.         phdr.iface = Nrs[dev].iface;
  196.         phdr.type = CL_AX25;
  197.         memcpy(&nbp->data[0],(char *)&phdr,sizeof(phdr));
  198.         enqueue(&Hopper,nbp);
  199.     }
  200.  
  201. }
  202. /* donrstat:  display status of active net/rom serial interfaces */
  203. int
  204. donrstat(argc,argv,p)
  205. int argc;
  206. char *argv[];
  207. void *p;
  208. {
  209.     register struct nrs *np;
  210.     register int i;
  211.  
  212.     tprintf("Interface   RcvB  NumReceived  CSumErrors\n");
  213.  
  214.     for(i = 0, np = Nrs; i < ASY_MAX ; i++, np++)
  215.         if(np->iface != NULLIF)
  216.             if(tprintf(" %8s   %4d   %10lu  %10lu\n",
  217.              np->iface->name, np->rcnt,
  218.              np->packets, np->errors) == EOF)
  219.                 break;
  220.  
  221.     return 0;
  222. }
  223.